home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
csubrtns.arc
/
ERR.C
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1985-07-06
|
256 b
|
11 lines
/* err.c by Michael Hanson */
/* you may use this, but not for profit, and give me credit */
/* error printer for c */
error(str,erc)
char *str;
int erc;
{
fprintf(STDERR,"%s \n",str);
exit(erc);
}